FreeCAD에 대한 더 깊은 통찰력을 바라면 이 곳을 방문하십시오. 요구에 맞게 FreeCAD를 사용자 정의하는 방법에 대해 여기서 배울 수 있습니다.
FreeCAD is extensible by Python code that is run directly in the Python console, or that is loaded from modules at startup. This means that you can modify FreeCAD without needing to recompile the program. For example, you can:
If you'd like to contribute content to these pages, request a wiki account with editor permissions in the forum, and read the WikiPages for the general guidelines that you should follow. For other ways to contribute with the project, see the Help FreeCAD page.
The functionality of FreeCAD is separated in Modules which deal with special data types and applications. FreeCAD has built-in modules and Extension Modules (plug-ins). Once plugin modules are installed, they become availible to you as easily as the built-in modules. The modules described below are the default modules, includeed in every FreeCAD installation.
dumps
and loads
.
The complete API documentation of FreeCAD is located at https://freecad.org/api/ . It contains both C++ and Python APIs, and is not totally well formatted yet, which can be confusing when looking for python-only code. An easier to browse version can be found here. Note that it can be incomplete, since it is updated manually. For more accurate information, browse the modules directly from FreeCAD's Python console.
Related: Exposing C++ to Python
FreeCAD에 특정되지 않은, 파이썬에 처음일 때 흥미로울 수 있는 좋은 일반 튜토리얼이 있습니다.
파이썬
PySide - How to create and manage FreeCAD's Qt UI interface from python
The following two references are PyQt specific (not PySide) but may offer some information of use:
Pivy - How to interact with FreeCAD's 3D scenes
On the Community portal, you can find other FreeCAD-based projects run by the FreeCAD users community. If you are starting a new FreeCAD project, be sure to list it there! We also have a page with things you can do if you would like to Help FreeCAD.